home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 3 / Info_Mac_1994-01.iso / Development / Source / MultiSession 1.04 Source / Core 27⁄June⁄1993 / CStaticText.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-06-04  |  551 b   |  27 lines  |  [TEXT/KAHL]

  1. /* CStaticText.h */
  2.  
  3. #pragma once
  4.  
  5. #include "CViewRect.h"
  6.  
  7. /* forwards */
  8. class CWindow;
  9. class CEnclosure;
  10.  
  11. struct    CStaticText    :    CViewRect
  12.     {
  13.         Handle        Text;
  14.         short            FontID;
  15.         short            PointSize;
  16.         short            Justification;
  17.         EXECUTE(MyBoolean Initialized;)
  18.  
  19.         /* */        ~CStaticText();
  20.         void        IStaticText(LongPoint Start, LongPoint Extent, Handle DaText,
  21.                             short TheFontID, short ThePointSize, CWindow* TheWindow,
  22.                             CEnclosure* TheEnclosure, short TheJustification);
  23.         void        DoUpdate(void);
  24.         void        DoDisable(void);
  25.         void        DoEnable(void);
  26.     };
  27.